home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ WinNT NTLMv2 2.xpl < prev    next >
Text File  |  1999-06-12  |  2KB  |  53 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="7"
  3. "COUNT"="3"
  4. "UIPATH"="Network\Security\NTLM v2 Authentication"
  5. "NAME"="Server Options"
  6. "VERSION"="1.13"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Restore original setting"
  9. "TEXT 2"="Level 4: Do not accept LM authentication (Win 3.x, 95, 98)"
  10. "TEXT 3"="Level 5: *ONLY* accept NTLM v2 authentication"
  11. "WARNING"="Setting this option to an incorrect value can prevent you from connecting to your network! Only change it if you are 100% sure what you are doing!"
  12. "DESCRIPTION 1"="Some more information can be found in the "Client options" plug-in, or by viewing the Microsoft KB article Q147706 (http://support.microsoft.com/support/)."
  13. "DESCRIPTION 2"=""Level 4" will prevent Windows 3.x or 95/98 users from connecting to this machine because LM authentication will be disabled, but Windows NT clients can still access it using NTLM or NTLM v2."
  14. "DESCRIPTION 3"=""Level 5" is the most secure setting, but will only work if SP4 is installed on both this server and the Windows NT clients connecting it."
  15. "DESCRIPTION 4"="For more information, please see Microsoft KB Q147706"
  16. "AUTHOR"="Xteq Systems"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  19.  
  20.  
  21.  
  22. sPath="HKLM\System\CurrentControlSet\Control\LSA\LMCompatibilityLevel"
  23.  
  24.  
  25. Sub Plugin_Initialize 
  26.  i=RegReadValue(sPath)
  27.  
  28.  if i=4 then SetUIElement 2,true
  29.  if i=5 then SetUIElement 3,true
  30. End Sub
  31.  
  32. Sub Plugin_CheckData(ElementIndex)
  33. End Sub
  34.  
  35. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  36.  i=0
  37.  
  38.  if GetUiElement(2)=true then i=4
  39.  if GetUiElement(3)=true then i=5
  40.  
  41.  if i>0 then 
  42.     Call RegWriteValue(sPath,i,2) 
  43.  else
  44.     i=RegReadValue(sPath)
  45.     if IsEmpty(i)=false then
  46.        Call RegDeleteValue(sPath)
  47.     end if
  48.  end if
  49. End Sub
  50.  
  51. Sub Plugin_Terminate 
  52. End Sub
  53.